home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / now.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  449 b   |  19 lines

  1. <!--- This example shows Now() --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Now Example</TITLE>
  5. </HEAD>
  6.  
  7. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  8. <BODY  bgcolor="#FFFFD5">
  9. <H3>Now Example</H3>
  10.  
  11. <P>Now returns the current date and time as a valid 
  12. date/time object.
  13.  
  14. <P>The current date/time value is <CFOUTPUT>#Now()#</CFOUTPUT>
  15. <P>You can also represent this as <CFOUTPUT>#DateFormat(Now())#, #TimeFormat(Now())#</CFOUTPUT>
  16.  
  17. </BODY>
  18. </HTML>       
  19.